/*TAKE A LITTLE PEEKSIE BUT NO PROMISES THAT ANY OF THIS IS GOOD!*/
:root {
  --bg: #f2dada;
  --dusty: #7f6969;
  --pink: #f7c9c8;
  --font: #aa6363;
  --palepink: #fff7f8;
  --bg-image: url('/images/bg/gamer_palepink_demonicpedigree.PNG');
  --magenta: #b24270;
}


body {
    font-family: Nunito;
    color: var(--font);
    background-image: var(--bg-image);
    background-color: var(--palepink);
    background-size: 261px;
  }

  h1, h2, h3, h4 {
    color: var(--font);
    font-family: Nunito;
  }

  p a:hover {
  color: var(--pink);
  }

  hr {
    border:0;
    height:15px;
    background:url('/images/dividers/gothic1.png');
  }

/*Big container that wraps everything up, excuse the silly name*/
#tupperware {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  height: 100vh;
  margin-top: -10px;
}

/*the box that says Enter*/
.boxcontainer {
    min-height: 100%;
    max-width: 750px;
    background-color: var(--palepink);
    
    color: var(--font);
    overflow: auto;
    padding: 0%;
    padding-top: 0%;
    margin: auto;

    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: none;
    border-bottom: none;
    border-image: url('/images/borders/black_lace_hillhouse.png') 55 round;
    border-image-outset: 1;
      }

  .boxcontainer a{
      color: var(--font);
      font-weight: bold;
    }

    .innercontainer {
      border: 1px solid black;
      min-height: 100vh;
      padding:25px;
    }

  /*the little doll sleepign on the page (desktop only*/
  .clover {
        z-index: 10;
        margin: auto;
        position: absolute;
        transform: translate(-400px);
    }
    .clover img {
        max-width: 400px;
    }

    @media only screen and (max-width:1023px){
        .clover {
          display: none;
        }
    }

  /*Mobile/Small Screen Clover*/
    .mobileclovercontainer {
      display: flex;
      margin-bottom: 0%;
    }

  .mobileclover {
    z-index: 10;
    margin: auto;
    display: flex;
    margin-bottom: 0%;
    }
  .mobileclover img {
    max-width: 350px;
    margin-bottom: 0%;
    }

@media only screen and (min-width:1023px){
  .mobileclover {
    display: none;
  }
  }

  .collectionbox{
    border: 1px solid;
    border-radius: 15px;
    padding: 5px;
    max-height: 200px;
    overflow: auto;
    text-align: center;
    margin: auto;
}

  .row:after {
    display: grid;
    clear: both;
  }   

  .column {
    float: left;
    width: 50%;
    padding: 5px;
  }

    .box {
        align-self: auto;
        max-width: 500px;
        background-color: #fff;
        border: 10px solid transparent;
        border-image: url('/images/borders/white lace.png') 7 round;
        border-image-outset: 1;
        max-height: 875px;
        overflow:auto;
    }

    .text {
        margin-left: 25%;
        margin-right: 25%;
        font-size: 18px;
    }

    @media only screen and (max-width:600px){
        .text {
            margin-left: 3px;
            margin-right: 3px;
        }
      }

  #header {
    font-size: 70px;
    color: var(--pink);
    text-shadow: var(--dusty) 2px 1px 2px;
    text-align: center;
    padding-top: 30px;
    font-family: UnifrakturMaguntia, serif;
    left: 200px;
  }

  @media only screen and (max-width:600px){
    #header {
        font-size: 32px;
    }
  }

  .center {
    text-align: center;
  }

  .button {
    background-color: #F5F5F0;
    border: 1px var(--font) solid;
    border-radius: 4px;
    font-family: Nunito;
    font-weight: bold;
    font-size: 16px;
    color: var(--font);
    padding: 5px;
    margin: 0.5%;
    text-decoration: none;
    line-height: 40px;
  }

  .button:hover{
    background-color: var(--font);
    color: #F5F5F0;
    border: 1px #F5F5F0 solid;
  }
 
  /*GETS RID OF THAT ANNOYING TRIANGLE ON READ MORE*/
  details > summary {
    list-style: none;
  }
  details > summary::-webkit-details-marker {
    display: none;
  }
  /*...*/

  #enter {
    font-family: 'Jacquard 24';
    font-size: 55px;
    letter-spacing: 12px;
    color: var(--pink);
    text-decoration: none;
  }

  #enter:hover {
    animation: float 1.5s linear infinite;
    color: var(--pink);
    text-shadow: var(--dusty) 2px 2px;
    text-decoration: none;
  }

  #enter a{
    color: var(--pink);
    text-shadow: var(--dusty) 2px 2px;
    text-decoration: none;
  }

  #enter a:hover {
    animation: float 1.5s linear infinite;
    color:#ffb6c1;
    text-shadow: var(--font) 2px 2px;
  }

  heart {
    background-image: url('/images/icons/black\ heart\ bullet\ by\ outspoken-kate\ via\ salvaged.nu.gif');
    background-repeat: no-repeat;
    height: 8px;
  }

  .hovertext {
    margin-right: 1px;
    transition: margin 0.2s ease-in-out;
    animation: float 1.5s linear infinite;
  }

/*ANIMATIONS*/

@keyframes float {
  0% {
    transform: translatey(0px);
    }
  50% {
    transform: translatey(-6px);
  }
  100% {
    transform: translatey(0px);
  }
  }

.floatingtext {
animation: float 1.5s linear infinite;
}

  .blurred {
  transition: 0.25s filter linear;
  -webkit-transition: 0.25s filter linear;
  -moz-transition: 0.25s filter linear;
  -o-transition: 0.25s filter linear;
  filter: blur(10px);
  }
  
  .blurred:hover {
    filter: blur(0);
  }

  /* ===== Scrollbar CSS ===== */

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #f7e8eb;
    border-radius: 10px;
    border: 3px outset #e5d7d7;
  }

  @media only screen and (max-width:900px){
    .navbar {
      margin: 0%;
      margin-top: 2%;
      margin-bottom: 0%;
    }
    .footer{ 
      margin: 5%;
      margin-top: 0%;
      margin-bottom: 2%;
  }
  }
  /*CURSORS*/
  body {
    cursor: url("/cursors/pinkcowstunning.png"), auto;
  }
  a {
    cursor: url("/cursors/heartclick.gif"), auto;
  }

  /*TEXT SELECTION*/
  ::-moz-selection { /* Code for Firefox */
    color: var(--palepink);
    background: var(--magenta);
  }
  
  ::selection {
    color: var(--palepink);
    background: var(--magenta);
  }



/* === FONTS ===*/
  @font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: Strawberry Muffins Demo;
    src: url('/fonts/Strawberry\ Muffins\ Demo.ttf');
}

@font-face {
    font-family: Valentine Cute;
    src: url('/fonts/Valentine Cute.ttf');
}

@font-face {
    font-family: better together;
    src: url('https://dl.dropbox.com/s/cs0id1abfa9kbpm/Better%20Together%20Spaced.ttf');
    font-size: 100px;
}

.unifrakturmaguntia-regular {
  font-family: "UnifrakturMaguntia", serif;
  font-weight: 400;
  font-style: normal;
}

.jacquard-24-regular {
  font-family: "Jacquard 24", serif;
  font-weight: 400;
  font-style: normal;
}
